home *** CD-ROM | disk | FTP | other *** search
/ ftp.mactech.com 2010 / ftp.mactech.com.tar / ftp.mactech.com / machack / Hacks97 / WarriorsProgress.sit / Warrior’s Progress / source code / Source / Libraries / Windows / WindowManagerUser.cp < prev    next >
Text File  |  1997-06-28  |  376b  |  24 lines

  1. // WindowManagerUser.cp
  2.  
  3. #ifndef WindowManagerUser_h
  4. #include "WindowManagerUser.h"
  5. #endif
  6. #ifndef Integers_h
  7. #include "Integers.h"
  8. #endif
  9. #ifndef FontManagerUser_h
  10. #include "FontManagerUser.h"
  11. #endif
  12.  
  13. WindowManagerUser::WindowManagerUser()
  14.   {
  15.     static bool initialized = false;
  16.     
  17.     if ( !initialized )
  18.       {
  19.         FontManagerUser();
  20.         InitWindows();
  21.         initialized = true;
  22.       }
  23.   }
  24.